Loading
Scriptbox
 VBScript Links 
 About VBscript 
 JavaScript Links 
 About JavaScript 
 Powershell Links 
 PSCRIPT the Script Launcher 
 PowerShell Shortcut Keys 
 About Powershell 
     VBScript
    JavaScript
    Powershell
Disclaimer
Contact
Latest 10 Scripts
Script search
  :: { Category } :: 0-9ABCDEFGHIJKLMNOPQRSTUVWXYZ
         

Search Options:  Monitor  Indexing  Service  Performance  

 Content of Monitor Indexing Service Performance.vbs
MD5 Hash: 72FC313CE5426D127AD894527ACA06C0
' Description: Uses cooked performance counters to return information about Indexing Service content index performance.


strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")

set objRefresher = CreateObject("WbemScripting.SWbemRefresher")
Set colItems = objRefresher.AddEnum(objWMIService," & _
"Win32_PerfFormattedData_ContentIndex_IndexingService").objectSet
objRefresher.Refresh

For i = 1 to 5
For Each objItem in colItems
Wscript.Echo "Caption: " & objItem.Caption
Wscript.Echo "Deferred for Indexing: " & objItem.Deferredforindexing
Wscript.Echo "Description: " & objItem.Description
Wscript.Echo "Files to be Indexed: " & objItem.Filestobeindexed
Wscript.Echo "Index Size in Megabytes: " & objItem.IndexsizeMB
Wscript.Echo "Merge Progress: " & objItem.Mergeprogress
Wscript.Echo "Name: " & objItem.Name
Wscript.Echo "Number of Documents Indexed: " & _
objItem.Numberdocumentsindexed
Wscript.Echo "Running Queries: " & objItem.Runningqueries
Wscript.Echo "Saved Indexes: " & objItem.Savedindexes
Wscript.Echo "Total Number of Documents: " & _
objItem.TotalNumberdocuments
Wscript.Echo "Total Number of Queries: " & objItem.TotalNumberofqueries
Wscript.Echo "Unique Keys: " & objItem.Uniquekeys
Wscript.Echo "Word Lists: " & objItem.Wordlists
Wscript.Sleep 2000
objRefresher.Refresh
Next
Next

   © 2008 - 2013 Boris Toll      :: Scripts available: 6.481 ::      :: scriptbox.toll.at ::      :: powered by www.toll.at ::
  Google Entries:n/a
  Yahoo Backlinks:n/a
  Live Backlinks:n/a
  del.icio.us Bookmarks:n/a
  Technorati Links:n/a